home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / ctrlz131 / run-time / runtime.h < prev   
Encoding:
Text File  |  1995-11-01  |  1.4 KB  |  37 lines

  1. /**************************************************************/
  2. /* runtime.h - ControlZ run-time libraries include file       */
  3. /* Copyright ⌐ 1995, C. van Zwynsvoorde. All rights reserved. */
  4. /**************************************************************/
  5.  
  6. /*
  7.  * This is the declaration for the Register functions. There is
  8.  * one in each run-time library. You must call them at the
  9.  * beginning of your program with your name and password.
  10.  * See the COntrolZ.HLP help file for more details.
  11.  *
  12.  * IMPORTANT:
  13.  * In order to be able to link those functions, you have to
  14.  * include (some of) the following lines in your project's
  15.  * .DEF file:
  16.  *
  17.  * IMPORTS
  18.  *      RegisterCZScaler=CZScaler.1
  19.  *      RegisterCZDial=CZDial.1
  20.  *      RegisterCZTuner=CZTuner.1
  21.  *      RegisterCZCombo=CZCombo.1
  22.  *      RegisterCZList=CZList.1
  23.  *      RegisterCZText=CZText.1
  24.  *      RegisterCZLink=CZLink.1
  25.  *
  26.  * You will also have to make a CASE INSENSITIVE LINK AND IMPORT
  27.  */
  28.  
  29. BOOL FAR PASCAL RegisterCZScaler(LPSTR szName, LPSTR szCode);
  30. BOOL FAR PASCAL RegisterCZDial(LPSTR szName, LPSTR szCode);
  31. BOOL FAR PASCAL RegisterCZTuner(LPSTR szName, LPSTR szCode);
  32. BOOL FAR PASCAL RegisterCZCombo(LPSTR szName, LPSTR szCode);
  33. BOOL FAR PASCAL RegisterCZList(LPSTR szName, LPSTR szCode);
  34. BOOL FAR PASCAL RegisterCZText(LPSTR szName, LPSTR szCode);
  35. BOOL FAR PASCAL RegisterCZLink(LPSTR szName, LPSTR szCode);
  36.  
  37.